翻訳と辞書
Words near each other
・ Virtua Tennis
・ Virtua Tennis (series)
・ Virtua Tennis 2
・ Virtua Tennis 2009
・ Virtua Tennis 3
・ Virtua Tennis 4
・ Virtua Tennis Challenge
・ Virtuacast
・ Virtual
・ Virtual (horse)
・ Virtual 8086 mode
・ Virtual access layer
・ Virtual acoustic space
・ Virtual actor
・ Virtual address (disambiguation)
Virtual address space
・ Virtual Advanced
・ Virtual advertising
・ Virtual agent
・ Virtual Air Traffic Simulation Network
・ Virtual airline
・ Virtual airline (economics)
・ Virtual airline (hobby)
・ Virtual ANS
・ Virtual Antenna Mapping
・ Virtual Anticipation
・ Virtual appliance
・ Virtual application
・ Virtual archaeology
・ Virtual Army Experience


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Virtual address space : ウィキペディア英語版
Virtual address space

In computing, a virtual address space (VAS) or address space is the set of ranges of virtual addresses that an operating system makes available to a process.〔(【引用サイトリンク】title=What is an address space? )〕 The range of virtual addresses usually starts at a low address and can extend to the highest address allowed by the computer's instruction set architecture and supported by the operating system's pointer size implementation, which can be 4 bytes for 32-bit or 8 bytes for 64-bit OS versions. This provides several benefits, one of which is, if each process is given a separate address space, security through process isolation.
== Example ==

:''In the following description, the terminology used will be particular to the Windows NT OS, but the concepts are applicable to other virtual memory operating systems.''
When a new application on a 32-bit OS is executed, the process has a 4 GiB VAS: each one of the memory addresses (from 0 to 232−1) in that space can have a single byte as value. Initially, none of them have values ('-' represents no value). Using or setting values in such a VAS would cause a memory exception.
0 4GB
VAS |----------------------------------------------|
Then the application's executable file is mapped into the VAS. Addresses in the process VAS are mapped to bytes in the exe file. The OS manages the mapping:
0 4GB
VAS |---vvvvvvv------------------------------------|
mapping |-----|
file bytes app.exe
The v's are values from bytes in the mapped file. Then, required DLL files are mapped (this includes custom libraries as well as system ones such as kernel32.dll and user32.dll):
0 4GB
VAS |---vvvvvvv----vvvvvv---vvvv-------------------|
mapping ||||||| |||||| ||||
file bytes app.exe kernel user
The process then starts executing bytes in the exe file. However, the only way the process can use or set '-' values in its VAS is to ask the OS to map them to bytes from a file. A common way to use VAS memory in this way is to map it to the page file. The page file is a single file, but multiple distinct sets of contiguous bytes can be mapped into a VAS:
0 4GB
VAS |---vvvvvvv----vvvvvv---vvvv----vv---v----vvv--|
mapping ||||||| |||||| |||| || | |||
file bytes app.exe kernel user system_page_file
And different parts of the page file can map into the VAS of different processes:
0 4GB
VAS 1 |---vvvv-------vvvvvv---vvvv----vv---v----vvv--|
mapping |||| |||||| |||| || | |||
file bytes app1 app2 kernel user system_page_file
mapping |||| |||||| |||| || |
VAS 2 |--------vvvv--vvvvvv---vvvv-------vv---v------|
On a 32-bit Microsoft Windows installation, by default, only 2 GiB are made available to processes for their own use.〔(【引用サイトリンク】title=Virtual Address Space )〕 The other 2GB are used by the operating system. On later 32-bit editions of Microsoft Windows it is possible to extend the user-mode virtual address space to 3 GiB while only 1 GiB is left for kernel-mode virtual address space by marking the programs as IMAGE_FILE_LARGE_ADDRESS_AWARE and enabling the /3GB switch in the boot.ini file.〔(【引用サイトリンク】title=LOADED_IMAGE structure )〕〔
On 64-bit Microsoft Windows, processes running 32-bit executables that were linked with the /LARGEADDRESSAWARE:YES option have access to 4 GiB of virtual address space;〔(【引用サイトリンク】title=/LARGEADDRESSAWARE (Handle Large Addresses) )〕〔(【引用サイトリンク】title=4-Gigabyte Tuning: BCDEdit and Boot.ini )〕 without that option they are limited to 2GB. By default, 64-bit processes have 8TB of user-mode virtual address space; Linking with /LARGEADDRESSAWARE:NO artificially limits the user-mode virtual address space to 2 GB.〔(【引用サイトリンク】title=/LARGEADDRESSAWARE (Handle Large Addresses) )〕〔(【引用サイトリンク】title=Virtual Address Space )
Allocating memory via system calls such as C's malloc implicitly maps bytes of the
page file into the VAS. However, a process can also ''explicitly'' map file bytes.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Virtual address space」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.